home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / src / txtutils16 / man / Mkefile_in < prev    next >
Text File  |  1991-06-28  |  2KB  |  59 lines

  1. # Makefile for GNU textutils documentation.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. SHELL = /bin/sh
  20.  
  21. srcdir = @srcdir@
  22. VPATH = @srcdir@
  23.  
  24. MANFILES = cat.1 cksum.1 comm.1 csplit.1 cut.1 expand.1 fold.1 head.1 \
  25. join.1 nl.1 od.1 paste.1 pr.1 sort.1 split.1 sum.1 tac.1 tail.1 tr.1 \
  26. unexpand.1 uniq.1 wc.1
  27.  
  28. DISTFILES = Makefile.in $(MANFILES)
  29.  
  30. all:
  31.  
  32. install: all
  33.     -cd $(srcdir); for f in $(MANFILES); do \
  34.     $(INSTALL_DATA) $$f $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  35.     done
  36.  
  37. uninstall:
  38.     for f in $(MANFILES); do rm -f \
  39.     $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  40.     done
  41.  
  42. TAGS:
  43.  
  44. clean:
  45.  
  46. mostlyclean: clean
  47.  
  48. distclean: clean
  49.     rm -f Makefile
  50.  
  51. realclean: distclean
  52.     rm -f TAGS
  53.  
  54. dist:
  55.     ln $(DISTFILES) ../`cat ../.fname`/man
  56.  
  57. # Prevent GNU make v3 from overflowing arg limit on SysV.
  58. .NOEXPORT:
  59.